kill node

129

kill node -

killall node

how to kill a running node process -

ps aux | grep node
kill -9 PROCESS_ID

node kill process -

sudo kill -9 $(sudo lsof -t -i:8000)

kill node process -

The Difference Between kill and pkill
The kill command is a wrapper to the kill system call, which knows only about process IDs. pkill can determine the process ID based on things like, process name, owner of the process or session id.

Syntax:
$ kill 1234
$ pkill -f node

kill node process -

lsof -t -i:3000

6279

Comments

Submit
0 Comments